home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / LED Scroll229137162001.psc / LEDDisplay / frmTest.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-07-16  |  2.2 KB  |  77 lines

  1. VERSION 5.00
  2. Object = "*\AMarquee.vbp"
  3. Begin VB.Form frmTest 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   6240
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   11295
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   6240
  11.    ScaleWidth      =   11295
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin MarqueeCtl.Marquee Marquee4 
  14.       Height          =   4515
  15.       Left            =   7440
  16.       TabIndex        =   3
  17.       Top             =   240
  18.       Width           =   735
  19.       _ExtentX        =   1296
  20.       _ExtentY        =   7964
  21.       BackColor       =   -2147483633
  22.       Orientation     =   1
  23.       LEDSize         =   2
  24.       Interval        =   1
  25.    End
  26.    Begin MarqueeCtl.Marquee Marquee3 
  27.       Height          =   4515
  28.       Left            =   6360
  29.       TabIndex        =   2
  30.       Top             =   240
  31.       Width           =   735
  32.       _ExtentX        =   1296
  33.       _ExtentY        =   7964
  34.       Orientation     =   1
  35.       LEDSize         =   1
  36.       LEDSpacing      =   2
  37.       OffSet          =   1
  38.       Text            =   "Vertical"
  39.    End
  40.    Begin MarqueeCtl.Marquee Marquee2 
  41.       Height          =   975
  42.       Left            =   120
  43.       TabIndex        =   1
  44.       Top             =   2640
  45.       Width           =   6015
  46.       _ExtentX        =   10610
  47.       _ExtentY        =   1720
  48.       BackColor       =   -2147483633
  49.       Text            =   "-- Horizontal --"
  50.    End
  51.    Begin MarqueeCtl.Marquee Marquee1 
  52.       Height          =   495
  53.       Left            =   120
  54.       TabIndex        =   0
  55.       Top             =   240
  56.       Width           =   6015
  57.       _ExtentX        =   10610
  58.       _ExtentY        =   873
  59.       RowCount        =   100
  60.       LEDSize         =   1
  61.       OffSet          =   5
  62.       Text            =   "This is a test!!!"
  63.    End
  64. Attribute VB_Name = "frmTest"
  65. Attribute VB_GlobalNameSpace = False
  66. Attribute VB_Creatable = False
  67. Attribute VB_PredeclaredId = True
  68. Attribute VB_Exposed = False
  69. Option Explicit
  70. Private Sub Form_Load()
  71. Dim i As Integer
  72.     ' Load all 256 characters.
  73.     For i = 0 To 255
  74.         Marquee4.Text = Marquee4.Text & Chr(i)
  75.     Next i
  76. End Sub
  77.